fix(release): stop expecting component-prefixed release tags - #3
Merged
Conversation
release-please-action defaults include-component-in-tag to true, so it looked for a graphql-hive-v0.6.3 tag while the repo's actual/desired tags are plain vX.Y.Z. That mismatch meant every run found 0 matching releases and never created a release PR.
kathrynkodama
approved these changes
Aug 13, 2026
andrewthauer
pushed a commit
that referenced
this pull request
Aug 18, 2026
🤖 I have created a release *beep* *boop* --- ## [0.6.4](v0.6.3...v0.6.4) (2026-08-17) ### Bug Fixes * **gemspec:** raise required_ruby_version to 2.7.0 ([#4](#4)) ([e85343b](e85343b)) * **release:** stop expecting component-prefixed release tags ([#3](#3)) ([bd8d30f](bd8d30f)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Release-please wasn't creating releases because it was looking for tags like graphql-hive-v0.6.3 instead of the plain v0.6.3 format we actually use. This happens because include-component-in-tag defaults to true when a package-name is set. Setting it to false fixes the mismatch.
Changes
Set the
include-component-in-tagflag explicitly to false since default is true.